home *** CD-ROM | disk | FTP | other *** search
/ 100 Best Shareware & Freeware Games / 100 Games.iso / Action / Meteor / BASE / ITEMDEFS.NEW < prev    next >
Encoding:
Text File  |  2001-07-09  |  1.2 KB  |  34 lines

  1. // Items defs file.  
  2. // This is the file that you use to add new items and power ups for
  3. // your Meteor conversion.
  4.  
  5. // Note that lines starting with "//" will be ignored by Meteor.
  6.  
  7. // **************************************************************************
  8. // * Items                                                                  *
  9. // **************************************************************************
  10.  
  11. // Syntax: additem <ITEM NAME> <START AMOUNT> <MAX AMOUNT> <LOCAL> <HUD>
  12. // set LOCAL to 1 if the number of the item should be reset
  13. // to the START AMOUNT at the start of each level.  
  14.  
  15. // Example...
  16. // additem "Hit Point"    100    100     1    0
  17.  
  18.  
  19.  
  20.  
  21.  
  22. // **************************************************************************
  23. // * Power Ups                                                              *
  24. // **************************************************************************
  25.  
  26. // Power ups are not actually items, they award items when they are
  27. // picked up.  Each power up has a name, a sprite, an item to credit
  28. // and a number of that item to credit.
  29.  
  30. // Syntax: addpowerup <NAME> <ITEM NAME TO CREDIT> <NUMBER TO CREDIT> <SPRITE FILENAME>
  31.  
  32. // Example...
  33. // addpowerup "Water Bottle"    "Hit Point"    2    "p_bottle.spr"
  34.